home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / brltty.postinst < prev    next >
Text File  |  2009-10-13  |  1KB  |  44 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. if [ ! -e /etc/brlapi.key ]; then
  6.     mcookie >/etc/brlapi.key
  7.     chmod 0644 /etc/brlapi.key
  8. fi
  9.  
  10. #update-rc.d brltty start 10 23 > /dev/null
  11.  
  12. if [ ! -f /etc/default/brltty ]; then
  13.     cat >/etc/default/brltty <<EOF
  14. # Set RUN_BRLTTY=yes to start brltty at boot time. You may need to
  15. # configure it in /etc/brltty.conf.
  16. RUN_BRLTTY=no
  17. EOF
  18. fi
  19.  
  20. if type update-initramfs >/dev/null 2>&1; then
  21.     update-initramfs -u
  22. fi
  23.  
  24. # Recover from incorrect init.d script headers in version 4.0-8 and earlier
  25. if [ "$1" = "configure" ] && dpkg --compare-versions "$2" le "4.0-8" \
  26.    && [ -f /etc/rcS.d/S[0-9][0-9]brltty ] \
  27.    && [ -f /etc/rc0.d/K[0-9][0-9]brltty ] \
  28.    && [ -f /etc/rc6.d/K[0-9][0-9]brltty ] ; then
  29.     update-rc.d -f brltty remove
  30. fi
  31.  
  32. # Automatically added by dh_installinit
  33. if [ -x "/etc/init.d/brltty" ]; then
  34.     update-rc.d brltty start 25 S . >/dev/null
  35.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  36.         invoke-rc.d brltty start || exit $?
  37.     else
  38.         /etc/init.d/brltty start || exit $?
  39.     fi
  40. fi
  41. # End automatically added section
  42.  
  43.  
  44.